BlueCielo Meridian Enterprise 2013 Developer's Guide | BlueCielo ECM Solutions

IAMFSObject interface

This interface is available on the AMDocument object and AMFolder object. It is helpful when using collections of documents and folders, such as AMFolder.Elements(EFF_ALL).

Members
Name Description

Archive property

Reserved. See “About reserved objects, methods, and properties.”

CanDelete property

True if it is possible to delete the document

Copy method

Creates a copy of the document or folder (will not cause events to occur)

Created property

The date/time the document or folder was created

CreatedBy property

The name of the person who created the document or folder

DisplayName property

The file/folder name

FileType property

Windows-defined file type

ID property

Object ID

ImportedFrom property

Path the document/folder was imported from

IsFolder property

True for folders

Modified property

The date the document was last edited

ModifiedBy property

The user who last edited the document

Move method

Moves the document or folder to another folder (does not cause any events to occur)

Name property

Internal name

ParentFolder property

Reference to the parent folder object (AMFolder object)

Path property

The path relative form the root of the vault

Repository property

Reference to the current transaction (AMDocumentRepository object)

Size property

The file size

Remarks

The AMDocument and AMFolder interfaces are derived from IAMFSObject, so they contain all the same methods and properties.

Related information

AMDocument object

AMFolder object

Example

Dim fso as IAMFSObject
Dim doc as AMDocument
Dim fld as AMFolder

For Each fso in Folder.Elements (EFF_ALL)
    If fso.IsFolder Then        
        Set fld = fso ' Add code for folders
    Else
        Set doc = fso ' Add code for documents
    End If        
Next

Copyright © 2000-2013 BlueCielo ECM Solutions